home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tcclib.exe / lha / GLOBALS.C < prev    next >
Text File  |  1990-01-31  |  394b  |  15 lines

  1. unsigned char attrib      = 7;
  2. unsigned char A_REVERSE   = 0x70;
  3. unsigned char A_NORMAL      = 0x07;
  4. unsigned char A_BOLD      = 0x0f;
  5. unsigned char A_UNDERLINE = 0x01;
  6.  
  7. char *CCMONTHS[12] = { "JAN", "FEB", "MAR", "APR", "MAY", "JUN",
  8.                        "JUL", "AUG", "SEP", "OCT", "NOV", "DEC" };
  9.  
  10. int CCMonthDays[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
  11.  
  12. void TcclibInitialize()
  13. {
  14. }
  15.